home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / program / gmp202.zip / mpf / Makefile < prev    next >
Makefile  |  1997-04-19  |  5KB  |  130 lines

  1. # This file was generated automatically by configure.  Do not edit.
  2. VPATH = .
  3. links = 
  4. host_alias = i386-EMX-OS/2
  5. host_cpu = i386
  6. host_vendor = EMX
  7. host_os = OS/2
  8. host_canonical = i386-EMX-OS/2
  9. target_alias = i386-EMX-OS/2
  10. target_cpu = i386
  11. target_vendor = EMX
  12. target_os = OS/2
  13. target_canonical = i386-EMX-OS/2
  14. build_alias = i386-EMX-OS/2
  15. build_cpu = i386
  16. build_vendor = EMX
  17. build_os = OS/2
  18. build_canonical = i386-EMX-OS/2
  19. # Makefile for GNU MP/mpf functions
  20. # Copyright (C) 1991, 1993, 1994, 1996 Free Software Foundation, Inc.
  21.  
  22. # This file is part of the GNU MP Library.
  23.  
  24. # The GNU MP Library is free software; you can redistribute it and/or modify
  25. # it under the terms of the GNU Library General Public License as published by
  26. # the Free Software Foundation; either version 2 of the License, or (at your
  27. # option) any later version.
  28.  
  29. # The GNU MP Library is distributed in the hope that it will be useful, but
  30. # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  31. # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
  32. # License for more details.
  33.  
  34. # You should have received a copy of the GNU Library General Public License
  35. # along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
  36. # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  37. # MA 02111-1307, USA.
  38.  
  39. srcdir = .
  40.  
  41. CC = cc
  42.  
  43. CFLAGS = -g -O
  44. AR = ar
  45. AR_FLAGS = rc
  46. SHELL = /bin/sh
  47.  
  48. #### host and target specific makefile fragments come in here.
  49. ###
  50.  
  51. MPF_SRCS = init.c init2.c set.c set_ui.c set_si.c set_str.c set_d.c set_z.c \
  52.   iset.c iset_ui.c iset_si.c iset_str.c iset_d.c clear.c get_str.c \
  53.   dump.c size.c eq.c reldiff.c sqrt.c random2.c inp_str.c out_str.c \
  54.   add.c add_ui.c sub.c sub_ui.c ui_sub.c mul.c mul_ui.c div.c div_ui.c \
  55.   cmp.c cmp_ui.c cmp_si.c mul_2exp.c div_2exp.c abs.c neg.c set_q.c get_d.c \
  56.   set_dfl_prec.c set_prc.c set_prc_raw.c get_prc.c ui_div.c sqrt_ui.c
  57. MPF_OBJS = init.o init2.o set.o set_ui.o set_si.o set_str.o set_d.o set_z.o \
  58.   iset.o iset_ui.o iset_si.o iset_str.o iset_d.o clear.o get_str.o \
  59.   dump.o size.o eq.o reldiff.o sqrt.o random2.o inp_str.o out_str.o \
  60.   add.o add_ui.o sub.o sub_ui.o ui_sub.o mul.o mul_ui.o div.o div_ui.o \
  61.   cmp.o cmp_ui.o cmp_si.o mul_2exp.o div_2exp.o abs.o neg.o set_q.o get_d.o \
  62.   set_dfl_prec.o set_prc.o set_prc_raw.o get_prc.o ui_div.o sqrt_ui.o
  63.  
  64. LATER_OBJS = inp_raw.o out_raw.o random.o pow_ui.o fac_ui.o
  65.  
  66. INCLUDES = -I. -I.. -I../mpn -I$(srcdir)/..
  67.  
  68. libmpf.a: Makefile $(MPF_OBJS)
  69.     rm -f $@
  70.     $(AR) $(AR_FLAGS) $@ $(MPF_OBJS)
  71.  
  72. .c.o:
  73.     $(CC) -c $(INCLUDES) $(CFLAGS) $(XCFLAGS) $<
  74.  
  75. clean mostlyclean:
  76.     rm -f *.o libmpf.a
  77.     -cd tests; $(MAKE) $@
  78. distclean maintainer-clean: clean
  79.     -cd tests; $(MAKE) $@
  80.  
  81. H = $(srcdir)/../gmp.h $(srcdir)/../gmp-impl.h ../mpn/gmp-mparam.h
  82.  
  83. abs.o: $(srcdir)/abs.c $(H)
  84. add.o: $(srcdir)/add.c $(H)
  85. add_ui.o: $(srcdir)/add_ui.c $(H)
  86. clear.o: $(srcdir)/clear.c $(H)
  87. cmp.o: $(srcdir)/cmp.c $(H)
  88. cmp_si.o: $(srcdir)/cmp_si.c $(H)
  89. cmp_ui.o: $(srcdir)/cmp_ui.c $(H)
  90. eq.o: $(srcdir)/eq.c $(H)
  91. div.o: $(srcdir)/div.c  $(H) $(srcdir)/../longlong.h
  92. div_2exp.o: $(srcdir)/div_2exp.c $(H)
  93. div_ui.o: $(srcdir)/div_ui.c $(H) $(srcdir)/../longlong.h
  94. dump.o: $(srcdir)/dump.c $(H)
  95. get_d.o: $(srcdir)/get_d.c $(H)
  96. get_prc.o: $(srcdir)/get_prc.c $(H)
  97. get_str.o: $(srcdir)/get_str.c $(H) $(srcdir)/../longlong.h
  98. init.o: $(srcdir)/init.c $(H)
  99. init2.o: $(srcdir)/init2.c $(H)
  100. inp_str.o: $(srcdir)/inp_str.c $(H)
  101. iset.o: $(srcdir)/iset.c $(H)
  102. iset_d.o: $(srcdir)/iset_d.c $(H)
  103. iset_si.o: $(srcdir)/iset_si.c $(H)
  104. iset_str.o: $(srcdir)/iset_str.c $(H)
  105. iset_ui.o: $(srcdir)/iset_ui.c $(H)
  106. mul.o: $(srcdir)/mul.c $(H)
  107. mul_2exp.o: $(srcdir)/mul_2exp.c $(H)
  108. mul_ui.o: $(srcdir)/mul_ui.c $(H)
  109. neg.o: $(srcdir)/neg.c $(H)
  110. out_str.o: $(srcdir)/out_str.c $(H)
  111. random2.o: $(srcdir)/random2.c $(H)
  112. reldiff.o: $(srcdir)/reldiff.c $(H)
  113. set.o: $(srcdir)/set.c $(H)
  114. set_d.o: $(srcdir)/set_d.c $(H)
  115. set_dfl_prec.o: $(srcdir)/set_dfl_prec.c $(H)
  116. set_prc.o: $(srcdir)/set_prc.c $(H)
  117. set_prc_raw.o: $(srcdir)/set_prc_raw.c $(H)
  118. set_q.o: $(srcdir)/set_q.c $(H)
  119. set_si.o: $(srcdir)/set_si.c $(H)
  120. set_str.o: $(srcdir)/set_str.c $(H) $(srcdir)/../longlong.h
  121. set_ui.o: $(srcdir)/set_ui.c $(H)
  122. set_z.o: $(srcdir)/set_z.c $(H)
  123. size.o: $(srcdir)/size.c $(H)
  124. sqrt.o: $(srcdir)/sqrt.c $(H)
  125. sqrt_ui.o: $(srcdir)/sqrt_ui.c $(H)
  126. sub.o: $(srcdir)/sub.c $(H)
  127. sub_ui.o: $(srcdir)/sub_ui.c $(H)
  128. ui_div.o: $(srcdir)/ui_div.c $(H) $(srcdir)/../longlong.h
  129. ui_sub.o: $(srcdir)/ui_sub.c $(H)
  130.